var error_msg_504 = ""; function validate_email_504(mail) { if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail)) { return (true); } error_msg_504 = "Имэйл хаягаа зөв оруулна уу"; return (false); } function getCookie_504(cname) { var name_504 = cname + "="; var decodedCookie_504 = decodeURIComponent(document.cookie); var ca_504 = decodedCookie_504.split(';'); for(var i = 0; i < ca_504.length; i++) { var c_504 = ca_504[i]; while (c_504.charAt(0) == ' ') { c_504 = c_504.substring(1); } if (c_504.indexOf(name_504) == 0) { return c_504.substring(name_504.length, c_504.length); } } return ""; } function subscribe_submit_504(){ var form_504 = document.querySelector('#subscribe-form-504'); var data_504 = new FormData(form_504); var url_504 = "/api.php/subscription/save?site_id=41&id=504" + '&cookie_id=' + getCookie_504("cookie_id") + '&short_cookie_id=' + getCookie_504("short_cookie_id"); var xhr_504 = new XMLHttpRequest(); if (window.XMLHttpRequest) { // Mozilla, Safari, ... var xhr_504 = new XMLHttpRequest(); } else if (window.ActiveXObject) { // IE var xhr_504 = new ActiveXObject("Microsoft.XMLHTTP"); } xhr_504.open('POST', url_504, true); xhr_504.onload = function () { /* do something to response */ console.log(this.responseText); document.getElementById("subscription-form-container-504").innerHTML = this.responseText; }; var valid_504 = 1; if(form_504.querySelector('input[name="subscriber[name]"]')){ if(form_504.querySelector('input[name="subscriber[name]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscriber[name]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('input[name="subscriber[email]"]')){ if(form_504.querySelector('input[name="subscriber[email]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscriber[email]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('input[name="subscriber[phone]"]')){ if(form_504.querySelector('input[name="subscriber[phone]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscriber[phone]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('input[name="subscription[company_name]"]')){ if(form_504.querySelector('input[name="subscription[company_name]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscription[company_name]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('input[name="subscription[company_position]"]')){ if(form_504.querySelector('input[name="subscription[company_position]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscription[company_position]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('input[name="subscription[title]"]')){ if(form_504.querySelector('input[name="subscription[title]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('input[name="subscription[title]"]').setAttribute("style", "border-color: red;"); } } if(form_504.querySelector('textarea[name="subscription[body]"]')){ if(form_504.querySelector('textarea[name="subscription[body]"]').value.trim().length > 0){ }else{ valid_504 = 0; form_504.querySelector('textarea[name="subscription[body]"]').setAttribute("style", "border-color: red;"); } } if(valid_504 == 0){ error_msg_504 = "Талбаруудыг бүрэн бөглөнө үү!"; } if(!validate_email_504(form_504.querySelector('input[name="subscriber[email]"]').value)){ form_504.querySelector('input[name="subscriber[email]"]').style="border-color: red;"; valid_504 = 0; }else{ } if(valid_504){ document.querySelector('#subscribe-form-504').style.display = "none"; document.querySelector('#subscription-form-loading-504').style.display = "inline"; xhr_504.send(data_504); }else{ alert(error_msg_504); } } // function postRequest_504(strURL) { var xmlHttp_504; if (window.XMLHttpRequest) { // Mozilla, Safari, ... var xmlHttp_504 = new XMLHttpRequest(); } else if (window.ActiveXObject) { // IE var xmlHttp_504 = new ActiveXObject("Microsoft.XMLHTTP"); } xmlHttp_504.open('POST', strURL, true); xmlHttp_504.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlHttp_504.onreadystatechange = function() { if (xmlHttp_504.readyState == 4) { updatepage_504(xmlHttp_504.responseText); } } xmlHttp_504.send(strURL); } // function updatepage_504(str){ document.getElementById("subscription-form-container-504").innerHTML = str; } //'//greensoft.mn' + var get_url_504 = '/api.php/subscription/renderform?site_id=41' + '&id=504' + '&placeholder[subscriber][name]=Таны нэр&placeholder[subscriber][email]=Имэйл хаяг&placeholder[subscriber][phone]=Утасны дугаар&placeholder[subscription][body]=Таны энэхүү сургалтанд сууж буй зорилго болон хүлээж буй үр дүнг бичнэ үү. Баярлалаа&send=Бүртгүүлэх' ; postRequest_504(get_url_504);